home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_400 / 431_01 / rclient.h < prev    next >
Text File  |  1994-10-07  |  597b  |  20 lines

  1. #ifndef rclient_h
  2. #define rclient_h
  3.  
  4. enum {
  5.   RCLIENT_QUERY,    /* return AX = 0x1234 if client */
  6.   RCLIENT_UNLOAD,
  7.   RCLIENT_REMAP,    /* BH = local, BL = remote */
  8.   RCLIENT_UNMAP,    /* BL = drive to unmap */
  9.   RCLIENT_UNMAPALL,
  10.   RCLIENT_GETXLAT,   /* ES:BX --> xlate table (BYTE *) */
  11.   RCLIENT_GETSTAT,   /* ES:BX --> IFS_STAT */
  12.   RCLIENT_GETPORTXLAT, /* ES:BX --> xlate table for ports */
  13.  
  14.   RSERVER_QUERY,     /* return AX = 0x4321 if server */
  15.   RSERVER_UNLOAD,
  16.   RSERVER_GETSTAT,   /* ES:BX --> IFS_STAT */
  17.   RSERVER_RESET      /* close any open files */
  18. };
  19. #endif
  20.